/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    padding-left: 50px;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 50px;
}

    .nav-links a {
        text-decoration: none;
        color: #120f3b;
        font-weight: 500;
        padding: 6px 8px;
        font-size: 20px;
        font-family: Helvetica, Arial, sans-serif;
    }

        .nav-links a:hover {
            background-color: #eee;
            border-radius: 4px;
        }

/* Button */
.nav-button {
    padding: 8px 16px;
    background-color: #170854;
    color: #ebe8fa;
    border: 2px solid #170854;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 40px;
}

    .nav-button:hover {
        background-color: #382c6e;
        color: #ebe8fa;
    }

/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-button {
        display: none;
    }
}

.content-section {
    background-color: #ddd;
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


.hero {
    position: relative;
    height: 100vh;
    background-image: url("images/hero banner3.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Brinjal Overlay */
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(9, 6, 20, 0.6); /* Brinjal with 60% transparency */
        z-index: 1;
    }

/* Text Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 20px;
}

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content h4 {
        padding-top: 20px;
        font-size: 20px;
    }



@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 90px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
    gap: 40px;
    background-color: #e9e9e9;
    margin-top: -10px;
}

.image-box {
    flex: 1 1 40%;
    min-width: 300px;
    margin-left: 30px;
}

    .image-box img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.content-box {
    flex: 1 1 50%;
    min-width: 280px;
}

    .content-box h2 {
        font-size: 40px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .content-box p {
        margin-bottom: 20px;
        color: #333;
        font-size: 18px;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .content-box h2 {
        font-size: 1.6rem;
    }
}

.container-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 100px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
    gap: 20px;
    margin-top: -10px;
}

.image-box-2 {
    flex: 1 1 40%;
    min-width: 300px;
    margin-left: 25px;
}

    .image-box-2 img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.content-box-2 {
    flex: 1 1 50%;
    min-width: 280px;
}

    .content-box-2 h2 {
        font-size: 40px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .content-box-2 p {
        margin-bottom: 20px;
        color: #333;
        font-size: 18px;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .container-2 {
        flex-direction: column;
        padding: 20px;
    }

    .content-box-2 h2 {
        font-size: 1.6rem;
    }
}


.container-3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 90px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
    gap: 40px;
    background-color: #e9e9e9;
    margin-top: -10px;
}

.image-box-3 {
    flex: 1 1 40%;
    min-width: 300px;
    margin-left: 30px;
}

    .image-box-3 img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.content-box-3 {
    flex: 1 1 50%;
    min-width: 280px;
}

    .content-box-3 h2 {
        font-size: 40px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .content-box-3 p {
        margin-bottom: 20px;
        color: #333;
        font-size: 18px;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .container-3 {
        flex-direction: column;
        padding: 20px;
    }

    .content-box-3 h2 {
        font-size: 1.6rem;
    }
}

.miles-h2 {
    margin-top: 120px;
    text-align: center;
    font-size: 45px;
    color: #171717;
    margin-bottom: 25px;
}

.miles-p {
    text-align: center;
    font-size: 20px;
    color: #333;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background: #191919;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
    }

.milestone {
    padding: 20px 30px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

    .milestone::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background: white;
        border: 4px solid #2196F3;
        top: 30px;
        border-radius: 50%;
        z-index: 1;
    }

.left {
    left: 0;
}

.right {
    left: 50%;
}

    .right::after {
        left: -10px;
    }

.milestone-content {
    background: #fff;
    padding: 20px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .milestone-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    }

.milestone h2 {
    font-size: 20px;
    padding-bottom: 15px;
}


.milestone img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.milestone h3 {
    margin-top: 0;
    color: #2196F3;
    padding-bottom: 10px;
}

.milestone p {
    color: #333;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 10px;
    }

    .milestone {
        width: 100%;
        padding-left: 30px;
        padding-right: 25px;
    }

        .milestone::after {
            left: 10px;
        }

    .right {
        left: 0%;
    }
}

.iconbox-container-h2 {
    text-align: center;
    margin-top: 120px;
    font-size: 35px;
}

.iconbox-container-p {
    text-align: left;
    padding-left: 110px;
    padding-right: 110px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
}

.icon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.icon-box {
    display: flex;
    align-items: center;
    background-color: #d4e2fab2; /* बैंगनी */
    border-radius: 12px;
    padding: 20px 25px;
    width: 420px;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

    .icon-box:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

    .icon-box i {
        font-size: 35px;
        color: #0f095a;
        margin-right: 15px;
    }

    .icon-box h3 {
        font-size: 20px;
        color: #0f095a;
    }

@media (max-width: 600px) {
    .icon-box {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* Base container styling */
.container-h6-h2-btn {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center;
    justify-content: space-between;
    background-color: #e9e9e9;
    padding: 40px;
    margin: 100px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.small-head {
    font-size: 18px;
    padding-bottom: 10px;
    text-align: center;
}

/* Heading style */
.heading {
    font-size: 30px;
    font-weight: bold;
    color: #170854;
    margin-bottom: 10px;
    padding-bottom: 20px;
    text-align: center;
}

/* Button style */
.btn {
    display: inline-block;
    padding: 10px 16px;
    background-color: #6969f7;
    color: white;
    border: 2px solid #9797e8;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 40px;
    text-decoration: none;
    font-size: 15px;
}

    .btn:hover {
        background-color: #9797e8;
        border: 2px solid #6969f7;
        color: #120f3b;
    }

/* Media query for larger screens */
@media (min-width: 768px) {
    .container-h6-h2-btn {
        flex-direction: column; /* Side-by-side on tablets and desktops */
    }

    .heading {
        margin-bottom: 0;
    }
}

footer {
    background-color: #170854;
    color: #fff;
    padding: 40px 20px;
    margin-top: 90px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    padding-left: 70px;
}

    .footer-column h3 {
        margin-bottom: 20px;
        font-size: 18px;
        padding-bottom: 5px;
    }

    .footer-column p {
        width: 250px;
        line-height: 1.5;
    }

    .footer-column ul {
        list-style: none;
    }

        .footer-column ul li {
            margin-bottom: 10px;
        }

            .footer-column ul li a {
                color: #ccc;
                text-decoration: none;
                transition: color 0.3s;
            }

                .footer-column ul li a:hover {
                    color: #fff;
                }

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

    .social-icons a:hover {
        color: #fff;
    }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin: 20px 0;
    }
}
